'Declaration
<CanBeNullAttribute()> <ContractAnnotationAttribute("null => null; notnull => notnull")> Public Shared Function ToUAAttributeDataResult( _ ByVal eventArgs As EasyUADataChangeNotificationEventArgs(Of TValue) _ ) As UAAttributeDataResult(Of TValue)
'Usage
Dim eventArgs As EasyUADataChangeNotificationEventArgs(Of TValue) Dim value As UAAttributeDataResult(Of TValue) value = EasyUADataChangeNotificationEventArgs(Of TValue).ToUAAttributeDataResult(eventArgs)
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public static UAAttributeDataResult<TValue> ToUAAttributeDataResult( EasyUADataChangeNotificationEventArgs<TValue> eventArgs )
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public: static UAAttributeDataResult<TValue^>^ ToUAAttributeDataResult( EasyUADataChangeNotificationEventArgs<TValue^>^ eventArgs )
Parameters
- eventArgs
- The typed event arguments to be converted.
Return Value
The typed result object that corresponds to the event arguments. null if the event arguments passed in were null.